home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_03 / 8n03025a < prev    next >
Encoding:
Text File  |  1995-11-01  |  299 b   |  14 lines

  1. *****Listing 1*****
  2.  
  3. /* cmd_opts.h, c\include
  4. *  structure definition for command line options
  5. */
  6. struct options 
  7. {
  8.     char    s;        /* valid switch letter */
  9.     int    arg_flg;    /* flag to indicate an
  10.                    argument is required */
  11.     char    ***poptv;    /* pointer to option's
  12.                    value vector */
  13. } ;
  14.